home *** CD-ROM | disk | FTP | other *** search
/ The Charlie Rose Science Series Anthology / The Charlie Rose Science Series Anthology (Pfizer, Inc.)(2008).iso / mac / Charlie Rose Science Series Anthology.app / Contents / Resources / movie.swf / scripts / __Packages / mx / controls / streamingmedia / VolumeControl.as < prev    next >
Text File  |  2008-02-01  |  310b  |  18 lines

  1. class mx.controls.streamingmedia.VolumeControl extends MovieClip
  2. {
  3.    function VolumeControl()
  4.    {
  5.       super();
  6.       this.init();
  7.    }
  8.    function init()
  9.    {
  10.       this.tabEnabled = false;
  11.       this.tabChildren = true;
  12.    }
  13.    function getHandle()
  14.    {
  15.       return this._handle;
  16.    }
  17. }
  18.